home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / Visual Cafe Pro v1.0 / VISCAFE.BIN / Spinner.desc < prev    next >
Encoding:
Text File  |  1997-06-19  |  6.7 KB  |  156 lines

  1. ; ---- symantec.itools.awt.Spinner abstract parent class ----
  2.  
  3. ; 01/29/97        TWB Integrated changes from Macintosh
  4.  
  5. BASECLASS=java.awt.Component
  6. CLASS=symantec.itools.awt.Spinner
  7.  
  8. PROPERTY=Enum, "Orientation", "Orientation", "ORIENTATION_VERTICAL", "ORIENTATION_VERTICAL=0, ORIENTATION_HORIZONTAL=1"
  9. ;PROPERTY=Integer, "Style", "Style"
  10. PROPERTY=Integer, "Minimum", "Min", ""
  11. PROPERTY=Integer, "Maximum", "Max", ""
  12. PROPERTY=Integer, "Value", "Current", ""
  13. PROPERTY=Boolean, "Editable", "Editable", ""
  14. PROPERTY=Boolean, "Wrappable", "Wrappable", ""
  15.  
  16. AWTEVENT=ACTION
  17. AWTEVENT=MOUSE
  18. AWTEVENT=KEYBOARD
  19.  
  20. CONNECTION=output,  "int",  "", "%name%.getValue()",         "Get the value of the %class%"
  21. CONNECTION=input, "boolean","", "%name%.setEditable(%arg%)",    "Set the text editability"
  22. CONNECTION=input,  "void",  "", "%name%.setEditable(true)",    "Make the text editable"
  23. CONNECTION=input,  "void",  "", "%name%.setEditable(false)",    "Make the text non-editable"
  24. CONNECTION=output,"boolean","", "%name%.getEditable()",        "Is the text editable?"
  25. CONNECTION=output,"boolean","", "!%name%.getEditable()",    "Is the text non-editable?"
  26. CONNECTION=input, "boolean","", "%name%.setWrappable(%arg%);",    "Set the wrappablity"
  27. CONNECTION=input,  "void",  "", "%name%.setWrappable(true);",    "Make the %class% wrappable"
  28. CONNECTION=input,  "void",  "", "%name%.setWrappable(false);",    "Make the %class% non-wrappable"
  29. CONNECTION=output,"boolean","", "%name%.getWrappable()",    "Is the %class% wrappable?"
  30. CONNECTION=output,"boolean","", "!%name%.getWrappable()",    "Is the %class% non-wrappable?"
  31. CONNECTION=input,   "int",  "", "%name%.setMin(%arg%);",    "Set the minimum value"
  32. CONNECTION=output,  "int",  "", "%name%.getMin()",        "Get the minimum value"
  33. CONNECTION=input,   "int",  "", "%name%.setMax(%arg%);",    "Set the maximum value"
  34. CONNECTION=output,  "int",  "", "%name%.getMax()",        "Get the maximum value"
  35. CONNECTION=input,   "int",  "", "%name%.setCurrent(%arg%);",    "Set the current index"
  36. CONNECTION=output,  "int",  "", "%name%.getCurrent()",        "Get the current index"
  37. CONNECTION=input,   "int",  "", "%name%.setOrientation(%arg%);","Set the Orientation"
  38. CONNECTION=output,  "int",  "", "%name%.getOrientation()",    "Get the Orientation"
  39. CONNECTION=output,  "int",  "", "%name%.ORIENTATION_VERTICAL",    "ORIENTATION_VERTICAL"
  40. CONNECTION=output,  "int",  "", "%name%.ORIENTATION_HORIZONTAL","ORIENTATION_HORIZONTAL"
  41.  
  42.  
  43. ; ---- symantec.itools.awt.ListSpinner component ----
  44.  
  45. BASECLASS=java.awt.Component
  46. CLASS=symantec.itools.awt.ListSpinner
  47.  
  48. SMALLICON=components\ListSpinner.ico, "0"
  49. ICONSUITE=Icons, "168"
  50.  
  51. FOLDER=Additional
  52. TOOLBAR=Additional
  53.  
  54. PROPERTY=Enum, "Orientation", "Orientation", "ORIENTATION_VERTICAL", "ORIENTATION_VERTICAL=0, ORIENTATION_HORIZONTAL=1"
  55. PROPERTY=String[], "List Items", "ListItems", ""
  56. PROPERTY=Boolean, "Editable", "Editable", "false"
  57.  
  58. AWTEVENT=ACTION
  59. AWTEVENT=MOUSE
  60. AWTEVENT=KEYBOARD
  61.  
  62. CONNECTION=output, "String", "", "%name%.getCurrentText()", "Get the text of the current item"
  63. CONNECTION=input, "String", "", "%name%.addItem(%arg%);", "Add an item to the spinner list"
  64. CONNECTION=input,  "void",  "", "%name%.setEditable(true)",    "Make the text editable"
  65. CONNECTION=input,  "void",  "", "%name%.setEditable(false)",    "Make the text non-editable"
  66. CONNECTION=output,"boolean","", "%name%.getEditable()",        "Is the text editable?"
  67. CONNECTION=output,"boolean","", "!%name%.getEditable()",    "Is the text non-editable?"
  68. CONNECTION=input,   "int",  "", "%name%.setOrientation(%arg%);","Set the Orientation"
  69. CONNECTION=output,  "int",  "", "%name%.getOrientation()",    "Get the Orientation"
  70. CONNECTION=output,  "int",  "", "%name%.ORIENTATION_VERTICAL",    "ORIENTATION_VERTICAL"
  71. CONNECTION=output,  "int",  "", "%name%.ORIENTATION_HORIZONTAL","ORIENTATION_HORIZONTAL"
  72.  
  73.  
  74. ; ---- symantec.itools.awt.NumericSpinner component ----
  75.  
  76. BASECLASS=java.awt.Component
  77. CLASS=symantec.itools.awt.NumericSpinner
  78.  
  79. SMALLICON=components\NumericSpinner.ico, "0"
  80. ICONSUITE=Icons, "169"
  81.  
  82. FOLDER=Additional
  83. TOOLBAR=Additional
  84.  
  85. PROPERTY=Enum, "Orientation", "Orientation", "ORIENTATION_VERTICAL", "ORIENTATION_VERTICAL=0, ORIENTATION_HORIZONTAL=1"
  86. PROPERTY=Integer, "Increment", "Increment", "1"
  87. PROPERTY=Integer, "Minimum", "Min", "0"
  88. PROPERTY=Integer, "Maximum", "Max", "10"
  89. PROPERTY=Integer, "Value", "Current", "0"
  90.  
  91. AWTEVENT=ACTION
  92. AWTEVENT=MOUSE
  93. AWTEVENT=KEYBOARD
  94.  
  95. CONNECTION=input, "int", "", "%name%.setIncrement(%arg%);", "Set the spinner increment"
  96. CONNECTION=output, "int", "", "%name%.getIncrement()", "Get the spinner increment"
  97. CONNECTION=input,   "int",  "", "%name%.setMin(%arg%);",    "Set the minimum value"
  98. CONNECTION=output,  "int",  "", "%name%.getMin()",        "Get the minimum value"
  99. CONNECTION=input,   "int",  "", "%name%.setMax(%arg%);",    "Set the maximum value"
  100. CONNECTION=output,  "int",  "", "%name%.getMax()",        "Get the maximum value"
  101. CONNECTION=output,  "int",  "", "%name%.ORIENTATION_VERTICAL",    "ORIENTATION_VERTICAL"
  102. CONNECTION=output,  "int",  "", "%name%.ORIENTATION_HORIZONTAL","ORIENTATION_HORIZONTAL"
  103.  
  104.  
  105. ; ---- symantec.itools.awt.spinner.DaySpinner component ----
  106.  
  107. BASECLASS=java.awt.Component
  108. CLASS=symantec.itools.awt.util.spinner.DaySpinner
  109.  
  110. SMALLICON=components\DaySpinner.ico, "0"
  111. ICONSUITE=Icons, "170"
  112.  
  113. FOLDER=Additional
  114. ;TOOLBAR=Additional
  115.  
  116. PROPERTY=Integer, "Minimum", "Min", "0"
  117. PROPERTY=Integer, "Maximum", "Max", "6"
  118. PROPERTY=Integer, "Value", "Current", "0"
  119.  
  120. AWTEVENT=ACTION
  121. AWTEVENT=MOUSE
  122. AWTEVENT=KEYBOARD
  123.  
  124. CONNECTION=output, "String", "", "%name%.getCurrentText()", "Get the text of the current item"
  125. CONNECTION=input,   "int",  "", "%name%.setOrientation(%arg%);","Set the Orientation"
  126. CONNECTION=output,  "int",  "", "%name%.getOrientation()",    "Get the Orientation"
  127. CONNECTION=output,  "int",  "", "%name%.ORIENTATION_VERTICAL",    "ORIENTATION_VERTICAL"
  128. CONNECTION=output,  "int",  "", "%name%.ORIENTATION_HORIZONTAL","ORIENTATION_HORIZONTAL"
  129.  
  130.  
  131. ; ---- symantec.itools.awt.spinner.MonthSpinner component ----
  132.  
  133. BASECLASS=java.awt.Component
  134. CLASS=symantec.itools.awt.util.spinner.MonthSpinner
  135.  
  136. SMALLICON=components\MonthSpinner.ico, "0"
  137. ICONSUITE=Icons, "171"
  138.  
  139. FOLDER=Additional
  140. ;TOOLBAR=Additional
  141.  
  142. PROPERTY=Integer, "Minimum", "Min", "0"
  143. PROPERTY=Integer, "Maximum", "Max", "11"
  144. PROPERTY=Integer, "Value", "Current", "0"
  145.  
  146. AWTEVENT=ACTION
  147. AWTEVENT=MOUSE
  148. AWTEVENT=KEYBOARD
  149.  
  150. CONNECTION=output, "String", "", "%name%.getCurrentText()", "Get the text of the current item"
  151. CONNECTION=input,   "int",  "", "%name%.setOrientation(%arg%);","Set the Orientation"
  152. CONNECTION=output,  "int",  "", "%name%.getOrientation()",    "Get the Orientation"
  153. CONNECTION=output,  "int",  "", "%name%.ORIENTATION_VERTICAL",    "ORIENTATION_VERTICAL"
  154. CONNECTION=output,  "int",  "", "%name%.ORIENTATION_HORIZONTAL","ORIENTATION_HORIZONTAL"
  155.  
  156.